home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2018 July / PCgo 07-2018 CD-ROM Germany.iso / nw.pak / Unnamed File 004867.txt < prev    next >
Encoding:
Text File  |  2015-07-29  |  2.1 KB  |  134 lines

  1. <!doctype html>
  2. <html i18n-values="dir:textdirection;">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <title>WebRTC Internals</title>
  6.     <style>/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
  7.  * Use of this source code is governed by a BSD-style license that can be
  8.  * found in the LICENSE file. */
  9.  
  10.  
  11. .peer-connection-dump-root {
  12.   font-size: 0.8em;
  13.   padding-bottom: 3px;
  14. }
  15.  
  16. .update-log-container {
  17.   float: left;
  18.   width: 50em;
  19.   overflow: auto;
  20. }
  21.  
  22. .ssrc-info-block {
  23.   color: #999;
  24.   font-size: 0.8em;
  25. }
  26.  
  27. .stats-graph-container {
  28.   clear: both;
  29.   margin: 0.5em 0 0.5em 0;
  30. }
  31.  
  32. .stats-graph-sub-container {
  33.   float: left;
  34.   margin: 0.5em;
  35. }
  36.  
  37. .stats-graph-sub-container > div {
  38.   float: left;
  39. }
  40.  
  41. .stats-graph-sub-container > div:first-child {
  42.   float: none;
  43. }
  44.  
  45. .stats-table-container {
  46.   float: left;
  47.   padding: 0 0 0 0;
  48.   width: 50em;
  49.   overflow: auto;
  50. }
  51.  
  52. .stats-table-container >div:first-child {
  53.   font-size: 0.8em;
  54.   font-weight: bold;
  55.   text-align: center;
  56.   padding: 0 0 1em 0;
  57. }
  58.  
  59. .stats-table-active-connection {
  60.   font-weight: bold;
  61. }
  62.  
  63. body {
  64.   font-family: 'Lucida Grande', sans-serif;
  65. }
  66.  
  67. table {
  68.   border: none;
  69.   margin: 0 1em 1em 0;
  70. }
  71.  
  72. td {
  73.   border: none;
  74.   font-size: 0.8em;
  75.   padding: 0 1em 0.5em 0;
  76.   min-width: 10em;
  77.   word-break: break-all;
  78. }
  79.  
  80. table > tr {
  81.   vertical-align: top;
  82. }
  83.  
  84. th {
  85.   border: none;
  86.   font-size: 0.8em;
  87.   padding: 0 0 0.5em 0;
  88. }
  89.  
  90. .tab-head {
  91.   background-color: rgb(220, 220, 220);
  92.   margin: 10px 2px 0 2px;
  93.   text-decoration: underline;
  94.   cursor: pointer;
  95.   display: inline-block;
  96.   overflow: hidden;
  97.   width: 20em;
  98.   height: 3em;
  99. }
  100.  
  101. .active-tab-head {
  102.   background-color: turquoise;
  103.   font-weight: bold;
  104. }
  105.  
  106. .tab-body {
  107.   border: 1px solid turquoise;
  108.   border-top-width: 3px;
  109.   padding: 0 10px 500px 10px;
  110.   display: none;
  111. }
  112.  
  113. .active-tab-body {
  114.   display: block;
  115. }
  116.  
  117. .user-media-request-div-class {
  118.   background-color: lightgray;
  119.   margin: 10px 0 10px 0;
  120. }
  121.  
  122. .user-media-request-div-class > div {
  123.   margin: 5px 0 5px 0;
  124. }
  125. </style>
  126.     <script src="chrome://resources/js/util.js"></script>
  127.     <script src="webrtc_internals.js"></script>
  128.   </head>
  129.   <body>
  130.     <p id='content-root'>
  131.     </p>
  132.   </body>
  133. </html>
  134.